home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Misc / FLM / otherfiles / english / ARexx / golded_take.rexx < prev    next >
OS/2 REXX Batch file  |  2000-01-01  |  1KB  |  30 lines

  1. /* Script which takes translation from FLM, and writes it under the GoldED
  2.    cursor position.
  3.  
  4.    To call this script automatically from GoldEd, follow the following
  5.    steps:
  6.  
  7.    1. Start GoldEd and start "Keyboard..." in menu "Config".
  8.    2. In the following window select "Record", and then press a key
  9.       combination by which later you'll be able to call FLM. E.g. Ctrl+F9.
  10.    3. In the following window select "Add".
  11.    4. On the right, you must now select ARexx, and then the gadget on the
  12.       right near to "Add". In the following filerequester, select this file
  13.       ("golded_take.rexx") aus.
  14.    5. Now click "Ok" and "Save".
  15.  
  16.    Now test just once if all this worked. If all is OK, now you should be
  17.    able e.g. to write the translation from FLM under the current cursor
  18.    position through Ctrl+F9.
  19.  
  20. -> Warning: Program FLM and RexxMast must be active !!!
  21. */
  22.  
  23. Options RESULTS
  24.  
  25. Address FLM TAKEWORD /* Translation from FLM in Variable RESULT */
  26.  
  27. If Symbol('RESULT')='LIT' Then Exit /* Is RESULT defined? */
  28.  
  29. TEXT T '"'RESULT'"' /* Contents of variable RESULT under cursor pos. */
  30.